home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxpaint.c < prev    next >
C/C++ Source or Header  |  1997-03-19  |  2KB  |  66 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxpaint.c */
  20. /* Graphics-state-aware fill and stroke procedures */
  21. #include "gx.h"
  22. #include "gzstate.h"
  23. #include "gxdevice.h"
  24. #include "gxhttile.h"
  25. #include "gxpaint.h"
  26. #include "gxpath.h"
  27.  
  28. /* Fill a path. */
  29. int
  30. gx_fill_path(gx_path *ppath, gx_device_color *pdevc, gs_state *pgs,
  31.   int rule, fixed adjust_x, fixed adjust_y)
  32. {    gx_device *dev = gs_currentdevice_inline(pgs);
  33.     gx_fill_params params;
  34.  
  35.     params.rule = rule;
  36.     params.adjust.x = adjust_x;
  37.     params.adjust.y = adjust_y;
  38.     params.flatness = (pgs->in_cachedevice > 1 ? 0.0 : pgs->flatness);
  39.     params.fill_zero_width = (adjust_x | adjust_y) != 0;
  40.     return (*dev_proc(dev, fill_path))
  41.       (dev, (const gs_imager_state *)pgs, ppath, ¶ms, pdevc,
  42.        pgs->clip_path);
  43. }
  44.  
  45. /* Stroke a path for drawing or saving. */
  46. int
  47. gx_stroke_fill(gx_path *ppath, gs_state *pgs)
  48. {    gx_device *dev = gs_currentdevice_inline(pgs);
  49.     gx_stroke_params params;
  50.  
  51.     params.flatness = (pgs->in_cachedevice > 1 ? 0.0 : pgs->flatness);
  52.     return (*dev_proc(dev, stroke_path))
  53.       (dev, (const gs_imager_state *)pgs, ppath, ¶ms,
  54.        pgs->dev_color, pgs->clip_path);
  55. }
  56.  
  57. int
  58. gx_stroke_add(gx_path *ppath, gx_path *to_path, gs_state *pgs)
  59. {    gx_stroke_params params;
  60.  
  61.     params.flatness = (pgs->in_cachedevice > 1 ? 0.0 : pgs->flatness);
  62.     return gx_stroke_path_only(ppath, to_path, pgs->device,
  63.                    (const gs_imager_state *)pgs,
  64.                    ¶ms, NULL, NULL);
  65. }
  66.